/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    background: #f8f7f2;
    color: #333;
  }
  
  /* Cabeçalho */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
  }
  
  header .logo img {
    height: 120px; /* logo aumentada */
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* mais junto da logo */
    margin-left: 500px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #008c45;
    font-weight: 500;
    font-size: 16px;
  }
  
  .numero {
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin-left: -20px;
  }

    .numero-1 {
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin-left: -20px;
    margin-bottom: -100px;
  }
  
  /* Banner principal */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 30px; /* junta texto e fachada */
    margin-top: -20px;
  }
  
  .hero-text {
    height: 350px;
    background: #008c45;
    color: #fff;
    padding: 30px;
    border-radius: 15px 0px;
    font-weight: bold;
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 30px;
    margin-top: 100px;
  }
  
  .hero-img img {
    border-radius: 15px 0px;
    height: 350px;
    width: 850px;
  }
  
  /* Seção Marcas */
  .brands {
    text-align: center;
    padding: 50px 20px;
  }
  
  .brands h2 {
    font-size: 60px; /* aumentado */
    color: #008c45;
    font-weight: bold;
  }
  
  .brands p {
    font-size: 22px;
    color: #008c45;
    margin-top: 10px;
  }

  /* Fonte global */
* {
    font-family: 'Montserrat', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 800; /* títulos bem fortes */
  }
  
  p, li, a, span {
    font-weight: 400; /* texto normal */
  }
  
  .btn {
    font-weight: 700; /* botões em negrito */
  }
  
  /* ========================
     UNIDADES
  ======================== */
  .units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background: #63a91f; /* verde do fundo */
  }
  
  .units-text {
    height: 250px;
    flex: 1;
    background: #008c45;
    color: #fff;
    border-radius: 15px 0;
    padding: 40px;
    font-weight: bold;
  }
  
  .units-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -15px;
  }
  
  .units-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .units-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .units-img {
    flex: 1;
  }
  
  .units-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px 0;
    object-fit: cover;
  }
  
  /* ========================
     RODAPÉ
  ======================== */
  
  footer {
    background: #63a91f;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column; /* organiza em duas linhas */
    gap: 15px; /* espaço entre as linhas */
  }
  
  /* Linha de cima */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo img {
    height: 80px;
  }
  
  .footer-nav {
    display: flex;
    gap: 20px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  /* Linha de baixo */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .creditos {
    font-size: 13px;
    margin-top: -20px;
  }
  
  .creditos a {
    color: #fff;
    text-decoration: underline;
  }
  
  
  